home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: Entities & Basic Scripting / Keystone Learning XML Entities and Basic Scripting.iso / Sample Files / Chapter 4 / Employees.xml < prev    next >
Encoding:
Extensible Markup Language  |  1999-12-01  |  527 b   |  21 lines

  1. <?xml version="1.0"?>
  2. <employees>
  3.     <employee id="A1234">
  4.         <name>
  5.             <first>John</first>
  6.             <last>Doe</last>
  7.         </name>
  8.         <position>Programmer</position>
  9.         <address>
  10.             <street>123 Main Street</street>
  11.             <city>Anywhere</city>
  12.             <state>CA</state>
  13.             <zip>92000</zip>
  14.         </address>
  15.         <phone>
  16.             <main>(714) 555-1000</main>
  17.             <fax>(714) 555-1001</fax>
  18.         </phone>
  19.     </employee>
  20. </employees>
  21.